//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LargoPanels.Editor
{
///
/// Cell Type.
///
public enum CellType
{
/// Cell Type.
None,
/// Cell Type.
LineCell,
/// Cell Type.
BarCell,
/// Cell Type.
GroupCell,
/// Cell Type.
CornerCell,
/// Cell Type.
ContentCell
}
}